home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / MenuHack / MenuHackSource.sit / MHAppEvts.c < prev    next >
Text File  |  1996-06-21  |  1KB  |  38 lines

  1. /*------------------------------------------------------------------------------
  2. #
  3. #    Message Tower service module for QuickMail
  4. #
  5. #    QMAppEvts.c    -    code for the Apple Event handlers
  6. #
  7. #    Copyright © CE Software, Inc., Inc. 1995
  8. #    All rights reserved.
  9. #
  10. ------------------------------------------------------------------------------*/
  11.  
  12. #include "MenuHackData.h"        /* bring in all the #defines for QMModule */
  13. #include <PLStringFuncs.h>        /* some special string handling stuff */
  14.  
  15. #pragma segment Appevts
  16.  
  17. static pascal OSErr QKAEHandleQuit(const AppleEvent *theAppleEvent, 
  18.     const AppleEvent *reply, long theblock)
  19. {
  20.     theblock = 0; //Just use it to stop warning that we're not using it!
  21.     gDoneFlag = false;
  22.     return noErr;
  23. }
  24.  
  25. static pascal OSErr QKAEHandleNewApp(const AppleEvent *theAppleEvent, 
  26.     const AppleEvent *reply, long theblock)
  27. {
  28.     theblock = 0; //Just use it to stop warning that we're not using it!
  29.     return noErr;
  30. }
  31.  
  32. void InstallAEHandlers()
  33. {    OSErr    aevtErr;
  34.  
  35.     aevtErr = AEInstallEventHandler( kCoreEventClass, kAEQuitApplication,(AEEventHandlerUPP)QKAEHandleQuit, 0, false ) ;
  36.     aevtErr = AEInstallEventHandler( kCoreEventClass, kAEOpenApplication,(AEEventHandlerUPP)QKAEHandleNewApp, 0, false ) ;
  37. }
  38.